home *** CD-ROM | disk | FTP | other *** search
/ Champak 141 / (Vol 141) Oct 17 2011.iso / Games / Clueless.swf / scripts / fl / video / VideoPlayerState.as < prev    next >
Encoding:
Text File  |  2011-10-17  |  1.1 KB  |  50 lines

  1. package fl.video
  2. {
  3.    public class VideoPlayerState
  4.    {
  5.        
  6.       
  7.       public var autoPlay:Boolean;
  8.       
  9.       public var isWaiting:Boolean;
  10.       
  11.       public var isLiveSet:Boolean;
  12.       
  13.       public var index:int;
  14.       
  15.       public var prevState:String;
  16.       
  17.       public var preSeekTime:Number;
  18.       
  19.       public var minProgressPercent:Number;
  20.       
  21.       public var url:String;
  22.       
  23.       public var totalTime:Number;
  24.       
  25.       public var owner:VideoPlayer;
  26.       
  27.       public var isLive:Boolean;
  28.       
  29.       public var cmdQueue:Array;
  30.       
  31.       public var totalTimeSet:Boolean;
  32.       
  33.       public function VideoPlayerState(param1:VideoPlayer, param2:int)
  34.       {
  35.          super();
  36.          this.owner = param1;
  37.          this.index = param2;
  38.          this.url = "";
  39.          this.isLive = false;
  40.          this.isLiveSet = true;
  41.          this.totalTime = NaN;
  42.          this.totalTimeSet = true;
  43.          this.autoPlay = param2 == 0;
  44.          this.isWaiting = false;
  45.          this.preSeekTime = NaN;
  46.          this.cmdQueue = null;
  47.       }
  48.    }
  49. }
  50.